home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / ACOT.LI < prev    next >
Text File  |  1993-10-16  |  205b  |  7 lines

  1. #    acot(x) is the arc cotangent function of x. The inverse function
  2. #    of cot(x). The reult is given in radians. acot=pi/2-atan(x)
  3. #    See aslo: cot, atan.
  4.  
  5. acot(x_) := if( isnumber(x), pi/2-atan(x) )
  6.  
  7.